home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / enlightenment / e_layout.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  1KB  |  25 lines

  1. /*
  2.  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  3.  */
  4. #ifdef E_TYPEDEFS
  5. #else
  6. #ifndef E_LAYOUT_H
  7. #define E_LAYOUT_H
  8.  
  9. EAPI Evas_Object *e_layout_add               (Evas *evas);
  10. EAPI int          e_layout_freeze            (Evas_Object *obj);
  11. EAPI int          e_layout_thaw              (Evas_Object *obj);
  12. EAPI void         e_layout_virtual_size_set  (Evas_Object *obj, Evas_Coord w, Evas_Coord h);
  13. EAPI void         e_layout_virtual_size_get  (Evas_Object *obj, Evas_Coord *w, Evas_Coord *h);
  14. EAPI void         e_layout_pack              (Evas_Object *obj, Evas_Object *child);
  15. EAPI void         e_layout_child_move        (Evas_Object *obj, Evas_Coord x, Evas_Coord y);
  16. EAPI void         e_layout_child_resize      (Evas_Object *obj, Evas_Coord w, Evas_Coord h);
  17. EAPI void         e_layout_child_raise       (Evas_Object *obj);
  18. EAPI void         e_layout_child_lower       (Evas_Object *obj);
  19. EAPI void         e_layout_child_raise_above (Evas_Object *obj, Evas_Object *above);
  20. EAPI void         e_layout_child_lower_below (Evas_Object *obj, Evas_Object *below);
  21. EAPI void         e_layout_unpack            (Evas_Object *obj);
  22.  
  23. #endif
  24. #endif
  25.